Содержание архива
файл install.txt
папка index
==============================
Редактируемые файлы:
/index.php
/login.php
/includes/functions.php
/templates/default/login.tpl
==============================

1. Скидываем  папку Index из архива в корень сайта

Открываем index.php

ищем в самом конце кода

print_page('index.tpl');

заменяем на

if(!IS_GUEST){
print_page('index.tpl');
}
else
{
?>
<!DOCTYPE html>
<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
		<link type="text/css" rel="stylesheet" href="index/style.css">
		<title>Авторизация :: НАЗВАНИЕ ВАШЕГО ТРЕКЕРА</title>
	</head>
	<body>
		<div class="wrapper" style="width: 440px;">
			<div class="content">
				<form action="/login.php" method="post">
					<div class="top">
						<h1><span>Авторизуйтесь используя ваш логин и пароль</span></h1>
						<ul>
							<li>
								<span>Логин:</span>
								<input id="username_input" name="login_username" type="text" accesskey="l" tabindex="1">
							</li>
							<li>
								<span>Пароль:</span>
								<input id="password_input" name="login_password" type="password" tabindex="2">
							</li>
						</ul>
					</div>
						<input class="submit-btn" value="" name="login" type="submit">
					<div style="display:none;">
						<input type="checkbox" name="autologin" value="1" tabindex="3" checked="checked" /><span>Запомнить</span>
					</div>
				</form>
			</div>
			<div class="footer">
				<div align="center"><a href="profile.php?mode=sendpassword">Забыли пароль?</a></div>
				<div align="center"><a href="profile.php?mode=register">Регистрация</a></div>
				<div align="center"><a href="invitation.php">Как получить инвайт</a></div>
			</div>
		</div>
	</body>
</html>
<?php
}

Открываем login.php

ищем

	print_page('login.tpl');
}

redirect($redirect_url);

заменяем на 

	print_page('login.tpl','','content_only');
	bb_exit();
}

redirect($redirect_url);

Открываем /includes/functions.php

ищем

function print_page ($args, $type = '', $mode = '')
{
	global $template, $gen_simple_header;

	$tpl = (is_array($args) && !empty($args['tpl'])) ? $args['tpl'] : $args;
	$tpl = ($type === 'admin') ? ADMIN_TPL_DIR . $tpl : $tpl;

	$gen_simple_header = (is_array($args) && !empty($args['simple']) OR $type === 'simple') ? true : $gen_simple_header;

	if ($mode !== 'no_header')
	{
		require(PAGE_HEADER);
	}

	$template->set_filenames(array('body' => $tpl));
	$template->pparse('body');

	if ($mode !== 'no_footer')
	{
		require(PAGE_FOOTER);
	}
}

заменяем на 

function print_page ($args, $type = '', $mode = '')
{
	global $template, $gen_simple_header;

	$tpl = (is_array($args) && !empty($args['tpl'])) ? $args['tpl'] : $args;
	$tpl = ($type === 'admin') ? ADMIN_TPL_DIR . $tpl : $tpl;

	$gen_simple_header = (is_array($args) && !empty($args['simple']) OR $type === 'simple') ? true : $gen_simple_header;

	if ($mode !== 'no_header' && $mode !== 'content_only')
	{
		require(PAGE_HEADER);
	}

	$template->set_filenames(array('body' => $tpl));
	$template->pparse('body');

	if ($mode !== 'no_footer' && $mode !== 'content_only')
	{
		require(PAGE_FOOTER);
	}
}

Открываем /templates/default/login.tpl

<!DOCTYPE html>
<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
		<link type="text/css" rel="stylesheet" href="index/style.css">
		<title>Авторизация :: НАЗВАНИЕ ВАШЕГО ТРЕКЕРА</title>
	</head>
	<body>
	<!-- IF CAPTCHA_HTML -->
	<div class="warnColor2">	<!-- IF ADMIN_LOGIN -->
	<h4 class="tCenter mrg_16">{L_ADMIN_REAUTHENTICATE}</h4>
	<!-- ELSE -->
	<h4 class="tCenter mrg_16">Авторизуйтесь используя ваш логин и пароль</h4>
	<!-- ENDIF --></div>
	<!-- ENDIF -->
						<!-- IF ERROR_MESSAGE -->
						<div class="warnColor1">{ERROR_MESSAGE}</div>
						<!-- ENDIF -->
		<div class="wrapper" style="width: 440px;">
			<div class="content">
				<form action="{S_LOGIN_ACTION}" method="post">
					<div class="top">
					<!-- IF CAPTCHA_HTML -->
						<h1><span> </span></h1>
					<!-- ELSE -->
					<h1><span>	<!-- IF ADMIN_LOGIN -->
	<h4 class="tCenter mrg_16">{L_ADMIN_REAUTHENTICATE}</h4>
	<!-- ELSE -->
	<h4 class="tCenter mrg_16">Авторизуйтесь используя ваш логин и пароль</h4>
	<!-- ENDIF --></span></h1>
					<!-- ENDIF -->
						<ul>
							<li>
								<span>{L_USERNAME}:</span>
								<input type="text" class="post" name="login_username" value="{LOGIN_USERNAME}" tabindex="101"<!-- IF ADMIN_LOGIN --> readonly="readonly" style="color: gray"<!-- ENDIF --> />
							</li>
							<li>
								<span>{L_PASSWORD}:</span>
								<input id="password_input" name="login_password"  type="password" tabindex="2">
							</li>
							<!-- IF CAPTCHA_HTML -->
							<li>
								<span>{L_CODE}</span>
								{CAPTCHA_HTML}
							</li>
							<!-- ENDIF -->
						</ul>
					</div>
						<input class="submit-btn" value="" name="login" type="submit">
					<div style="display:none;">
						{L_AUTO_LOGIN}: <input type="checkbox" name="autologin" tabindex="103"<!-- IF ADMIN_LOGIN || AUTOLOGIN_DISABLED --> disabled="disabled"<!-- ELSE -->checked="checked"<!-- ENDIF --> />
					</div>
				</form>
			</div>
			<div class="footer">
				<div align="center"><a href="{U_SEND_PASSWORD}">{L_FORGOTTEN_PASSWORD}</a></div>
				<div align="center"><a href="profile.php?mode=register">Регистрация</a></div>
				<div align="center"><a href="invitation.php">Как получить инвайт</a></div>
			</div>
		</div>
	</body>
</html>